-
Notifications
You must be signed in to change notification settings - Fork 796
[Offload] Change section names for offload entries #20509
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Offload] Change section names for offload entries #20509
Conversation
Follow the community change that renames the section for the offload entries from omp_offloading_entries to llvm_offload_entries.
|
@YuriPlyakhin I am not authorized to merge. Can you merge this change if possible? |
@hansangbae , you are missing approval from @intel/dpcpp-clang-driver-reviewers yet. |
| ConstantAggregateZero::get(ArrayType::get(getEntryTy(), 0u)); | ||
| auto *DummyEntry = new GlobalVariable( | ||
| M, DummyInit->getType(), true, GlobalVariable::ExternalLinkage, | ||
| DummyInit, "__dummy.omp_offloading.entry"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should the __dummy.omp_offloading.entry be renamed to __dummy.llvm_offload.entry too?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No, the name change is only for omp_offloading_entries -> llvm_offload_entries.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No, the name change is only for
omp_offloading_entries->llvm_offload_entries.
Okay. Thanks.
Follow the community change that renames the section for the offload entries from omp_offloading_entries to llvm_offload_entries.